.useCaseBannerCanvas {
    z-index: -1;
    right: 50%;
    top: 0;
    left: 0;
    bottom: 30%;
    position: absolute;
}
.useCaseBannerTop {
    padding-bottom: 90px;
    margin-top: 20vh;
}
.useCaseBannerTop .title {
    font-weight: 800;
    font-size: 90px;
    color: #ffffff;
    line-height: 126px;
    text-align: center;
}
.useCaseBannerTop ul {
    margin-top: 16vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-weight: 800;
    color: #ffffff;
}

.useCaseBannerTop ul li {
    border-radius: 20px;
    line-height: 29px;
    padding: 56px 54px;
    font-size: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    width: calc(30% - 115px);
    height: 40px;
}
.useCaseBannerTop ul .active {
    animation: useCaseBannerTopUl 0.4s linear forwards;
    background: rgba(255, 255, 255, 0.1);
}
@keyframes useCaseBannerTopUl {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.useCaseBannerTop ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(0, 201, 255, 1), rgba(0, 201, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
/* 回测-start */
.useCaseBTCon,
.useCaseReleaseCon {
    width: 100%;
    background-color: #f7f8fc;
    padding-bottom: 100px;
}
.useCaseBTCon > div {
    width: 93%;
    padding: 90px 7%;
    margin: 0 auto;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #fff;
    transform: translateY(-90px);
    position: relative;
    z-index: 1;
}
.useCaseBTCon .title {
    font-weight: bold;
    font-size: 52px;
    color: #14171f;
    line-height: 73px;
    text-align: center;
}
.useCaseBTCon .tips {
    font-weight: 500;
    font-size: 24px;
    color: #333c4d;
    line-height: 33px;
    text-align: center;
    margin-top: 30px;
}

.useCaseBTCon .imgBox {
    margin-top: 147px;
}
.useCaseBTCon .imgBox .title {
    font-weight: 800;
    font-size: 40px;
    color: #333333;
    line-height: 56px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.useCaseBTCon .imgBox .title .right {
    flex-shrink: 0;
}
.useCaseBTCon .imgBox .title .right span {
    padding: 13px 18px;
    background-color: #f0f3f4;
    font-weight: 600;
    font-size: 22px;
    color: #737985;
    line-height: 30px;
    text-align: left;
    border-radius: 30px;
    display: inline-block;
    vertical-align: middle;
}
.useCaseBTCon .imgBox .title .right img {
    width: 23px;
    height: 25px;
}
.useCaseBTCon .imgBox .color {
    margin-top: 40px;
    font-weight: 600;
    font-size: 24px;
    color: #999999;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.useCaseBTCon .imgBox .color i {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}
.useCaseBTCon .imgBox .color span {
    margin-right: 40px;
    display: flex;
    align-items: center;
}
.useCaseBTCon .imgBox .title .right span:first-of-type {
    padding: 14px 25px;
}
.useCaseBTCon .imgBox .img {
    margin-top: 90px;
    width: 100%;
    overflow: hidden;
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
}
.useCaseBTCon .imgBox .img img {
    width: 100%;
}
.useCaseBTCon .imgBox .imgMove {
    animation: imgMove 0.8s ease-in-out forwards;
}
@keyframes imgMove {
    from {
        margin-left: 100%;
    }
    to {
        margin-left: 0;
    }
}
.useCaseBTCon .imgBar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.useCaseBTCon .imgBar i {
    width: 55px;
    height: 2px;
    padding: 30px 5px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.useCaseBTCon .imgBar i::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    height: 2px;
    background-color: #d0dadd;
}
.useCaseBTCon .imgBar .active::after {
    background-color: #333;
}
.useCaseBTCon .imgBar img {
    width: 9px;
    height: 16px;
    padding: 13px;
    cursor: pointer;
    transform: translateX(-10px);
    filter: drop-shadow(#333333 10px 0);
    -webkit-filter: drop-shadow(#333333 10px 0);
}
.useCaseBTCon .prev {
    margin-right: 20px;
}
.useCaseBTCon .next {
    margin-left: 20px;
}
.useCaseBTCon .imgBar .not {
    filter: drop-shadow(#d0dadd 10px 0);
    -webkit-filter: drop-shadow(#d0dadd 10px 0);
    cursor: not-allowed;
}
.useCaseBTTable {
    width: 100%;
    color: #333;
    border-collapse: collapse;
    margin-top: 100px;
    word-break: break-word;
}
.useCaseBTTable thead {
    color: #666;
    background: #f8f8f8;
}
.useCaseBTTable tr {
    border: 1px solid #dddde1;
}
.useCaseBTTable tbody tr:hover {
    background: rgba(0, 201, 255, 0.1);
}
.useCaseBTTable th,
.useCaseBTTable td {
    padding: 17px 15px;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
}
.useCaseBTTable td:first-of-type {
    color: #666;
}
@media screen and (max-width: 800px) {
    .useCaseBannerTop ul {
        flex-wrap: wrap;
        padding: 0 8%;
        margin-top: 30px;
    }
    .useCaseBannerTop ul li {
        font-size: 12px;
        padding: 12px;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .useCaseBannerTop .title {
        margin: 30px 0;
        font-size: 50px;
        line-height: 60px;
    }
    .useCaseBannerCanvas {
        display: none;
    }
    .useCaseBTCon > div {
        transform: translateY(20px);
        padding: 20px;
    }
    .useCaseBTCon .title {
        font-size: 24px;
        margin: 0;
    }
    .useCaseBTCon .tips {
        font-size: 14px;
        margin: 0;
    }
    .useCaseBTCon .imgBox {
        margin-top: 30px;
    }
    .useCaseBTCon .imgBox .title {
        flex-wrap: wrap;
        font-size: 24px;
        line-height: 28px;
        margin: 0;
        justify-content: flex-end;
        margin-bottom: 20px;
    }
    .useCaseBTCon .imgBox .title>p:first-of-type{
        min-width: 100%;
    }
    .useCaseBTCon .imgBox .title .right {
        margin: 0;
    }
    .useCaseBTCon .imgBox .title .right span {
        font-size: 12px;
    }
    .useCaseBTCon .imgBox .title .right span:first-of-type{
        padding: 3px 25px;
    }
    .useCaseBTCon .imgBox .title .right .share{
        padding: 5px 12px 1px;
    }
    .useCaseBTCon .imgBox .title .right img {
        height: auto;
        width: 12px;
    }
    .useCaseBTCon .imgBox .color span {
        margin-bottom: 10px;
        font-size: 12px;
    }
    .useCaseBTCon .imgBox .color i {
        width: 10px;
        height: 10px;
        margin-right: 2px;
    }
    .useCaseBTCon .imgBox .color {
        margin-top: 15px;
    }
    .useCaseBTCon .imgBox .img {
        margin-top: 30px;
    }
    .useCaseBTCon .imgBar {
        margin-top: 30px;
    }
    .useCaseBTTable th,
    .useCaseBTTable td {
        font-size: 12px;
        line-height: 16px;
        padding: 12px 3px;
    }
    .useCaseBTTable th:last-of-type {
        word-break: auto-phrase;
    }
}

/* 回测-end */

/* 发布-start */
.useCaseReleaseCon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 120px 10%;
}
.useCaseReleaseCard {
    width: calc((100% - 100px) / 3);
    padding: 60px 50px 110px;
    background: #ffffff;
    box-shadow: 0px 2px 25px 10px rgba(218, 218, 218, 0.38);
    border-radius: 10px;
    color: #999999;
    font-size: 20px;
    line-height: 30px;
    position: relative;
    overflow: hidden;
    word-break: break-word;
    box-sizing: border-box;
    /* cursor: pointer; */
    transition: transform 1s;
    margin: 0;
    margin-bottom: 40px;
}
.useCaseReleaseCard .title {
    font-weight: 800;
    font-size: 28px;
    color: #333333;
    line-height: 40px;
    text-align: left;
}
.useCaseReleaseCard .time {
    margin-top: 14px;
    font-weight: 500;
}
.useCaseReleaseCard .time span {
    margin-right: 10px;
}
.useCaseReleaseCard .con {
    margin-top: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.useCaseReleaseCard .type {
    padding: 20px 20px;
    width: max-content;
    max-width: 100%;
    min-width: 70%;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: 28px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #dbdbdf;
    position: relative;
    margin-top: 38px;
    color: #333;
    z-index: 1;
}
.useCaseReleaseCard .img {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    transition: transform 1s;
    z-index: 0;
}
.useCaseReleaseCard img {
    width: 100%;
    height: auto;
}
.useCaseReleaseCard:hover {
    transform: scale(1.05);
}
.useCaseReleaseCard:hover .img {
    transform: translateY(0);
}
.useCaseReleaseCard:hover .type {
    background-color: #333333;
    color: #fff;
    border-color: #333;
    z-index: 1;
}
.useCaseReleaseCard .img::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: opacity 1s;
    z-index: 1;
    background: linear-gradient(to right, rgba(5, 194, 246, 0.86) 50%, rgba(0, 200, 254, 0.3) 100%);
    opacity: 0;
}
.useCaseReleaseCard:hover .img::after {
    opacity: 1;
}
@media screen and (max-width: 800px) {
    .useCaseReleaseCon {
        padding: 30px 20px;
    }
    .useCaseReleaseCard {
        width: 90%;
        margin: 0 auto;
        padding: 60px 20px 180px;
        margin-bottom: 30px;
    }
    .useCaseReleaseCard .title{
        font-size: 24px;
        line-height: 30px;
    }
    .useCaseReleaseCard{
        font-size: 14px;
        line-height: 22px;
    }
}
/* 发布-end */

.useCaseReleaseBanner .useCaseBannerTop ul li{
    cursor: none;
}
